Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2745
Always show edit mode - For All Rows
posted

My client has requested a feature I don't think the grid supports.  Their concern is the grid doesn't look editable even when it is.  So they asked for us always show the input fields unless the column is readonly.  How would I achieve this?

I have a few ideas already revolving around the concern:

 - I've highlighted the editable fields so they stand out; however, I think they would like more of a direct indiciation.
 - I could implement a text box in each field using a row template, but I am unsure if the values will synchronize or if the real input field will get focus on selection.
        - Going to try to setup a prototype with this one.

Any other ideas or features I may have missed?

Parents
No Data
Reply
  • 24671
    Verified Answer
    posted

    hi,

    Unfortunately this isn't supported out of the box yes. One of the reasons is that we don't create input elements for every cell, we just move and position several, in this way there is no excessive elements created. that's only one of the reasons. If you'd like to have input fields visible all the time, i suggest to disable the updating feature, and create a column template with an input showing the value. Then you can bind to the input's change event, and update the data source , respectively. you can do this either directly in the data source, or using the data source API, so that transactions are recorded:

    http://help.infragistics.com/jQuery/2012.2/ig.datasource => methods =>

    setCellValue

    commit

    rollback

    You can define a column template in the following way:

    http://ko.infragistics.com/help/topic/ff8c4aab-980b-46da-a8af-d6130b940962 

    Hope it helps. Let me know if you have any other questions. Thanks,

    Angel

Children