Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

160
Views
How should I implement a button for each grid's row to show details using vuejs + kendo grid?

I have a Vue Kendo grid for user's requests. I wanna to put a button in each grid as "show more" by clicking it user can see request's details in a dialog window and he can accept or reject the request. This is my grid:

<div id="kgrid">
  <kendo-datasource ref="datasource1"
                    :transport-read-url="url"
                    :page-size="'10'"
                    :schema-data="'data'"
                    :schema-total="'total'"
                    :transport-read-type="'POST'"
                    :transport-read-data-type="'json'"
                    :transport-read-content-type="'application/json'"
                    :transport-parameter-map="parameterMap"
                    :request-start="onBeforeSend"
                    :error="onError"
                    :server-paging="true"
                    :server-filtering="true">
  </kendo-datasource>

  <kendo-grid :height="400"
              :data-source-ref="'datasource1'"
              :filterable-mode="'row'"
              :data-items="data"
              :sortable="sortable"
              :sort="sort"
              :skip="skip"
              :take="take"
              :pageable="pageableFunc"
              :filterable="filtercontain"
              :resizable="true"
  >
    <kendo-grid-column :field="'requestId'"
                       title="requestId"
                       :width="150"
                       :filterable-cell-operator="'contains'"
                       :filterable-cell-suggestion-operator="'contains'"
    ></kendo-grid-column>
    <kendo-grid-column :field="'user.firstName'"
                       title="firstName"
                       :width="150"
                       :filterable-cell-operator="'contains'"
                       :filterable-cell-suggestion-operator="'contains'">
    </kendo-grid-column>
    <kendo-grid-column :field="'user.lastName'"
                       title="lastName"
                       :width="150"
                       :filterable-cell-operator="'contains'"
                       :filterable-cell-suggestion-operator="'contains'"
    ></kendo-grid-column>
    <kendo-grid-column :field="'status'"
                       title="status"
                       :width="150"
                       :filterable-cell-operator="'contains'"
                       :filterable-cell-suggestion-operator="'contains'"
    ></kendo-grid-column>
  </kendo-grid>
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!