My smart gwt listgrid is grouped by one of its columns. If I want to add a new row to the a group in the grid, I click on the group and the add button. A row is added as the last row of the grid for editing irrespective of the grouping. Once the row is saved, its shown in the correct group. Is there a way to add the new row for editing in the same group itself instead as the last row?
Adding new row to a listgrid which is grouped in gwt
902 Views Asked by Saran At
1
There are 1 best solutions below
Related Questions in GROUPING
- Using Table to Group: invalid 'type' (character) of argument
- SQL Server Multiple Groupings
- Cell of grouped elements
- Sorting and Grouping of Korean Character (Not familiar with Korean language)
- Display array items in groups
- BaseX XQuery error: root(): no context value bound
- Group MySQL results into blocks of A-Z in PHP
- aggregate rows using datatable
- Group By and CASE query in LinQ
- How can segregate data groups using apache PIG
- java8 stream grouping and sorting on aggregate sum
- SSRS - white space issue in column group
- How to aggregate data with the dyplr package in R
- How to display items of groups in AngularJS?
- Grouping and searching text in ListView in WPF
Related Questions in SMARTGWT
- Delete key does not work in Date Item (Smart GWT)
- GWT: Prevent Javascript minification
- SmartGWT TreeGrid disable lazy loading
- GWT-Can all sub widgets under TabPanel be identical?
- How to filter item from a menu
- smartGWT duplicate buttons
- How to use CKEditor in JAVA
- SmartGWT Grid not working when updgrading SmartGWT 6
- Using GWT JSNI to integrate with js files
- Modify rich text in GWT or smartGWT widget or area
- Test XSS vulnerability of a website which is using smartgwt
- How can we use synchronous Datasource operations in SmartGWT?
- Want to hit a rest service with clicking a button
- click checkbox in listgrid record
- Selected tree nodes are not displayed properly in IE 8
Related Questions in LISTGRID
- smartGWT listGrid change checkBox to image
- Clear selected record in List grid smartgwt
- Smartgwt: How to get checkbox value on a listgrid?
- smartgwt listgridfield with boolean type with checkbox in field header
- smartgwt IE11 UI issues
- SmartGWT: Selected Record from Listgrid bind to TextBox in another Window
- smart gwt remove hilite and change background color
- (InternalError): script too large stack... when requesting 50000+ records in Firefox
- How I can drag and drop an element within a cell in a listgrid?
- Smartclient: How to show a canvas on a modal mask?
- Mark records as new in a ListGrid in SmartGWT
- Smart GWT: ListGrid.createRecordComponent () is not called for all rows
- How to handle Array Object in List Grid? [SmartGWT]
- Adding new row to a listgrid which is grouped in gwt
- How to invalid cache when using ListGrid and Datasource
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you would like to use pending edits, you have to use a TreeGrid instead of a ListGrid. With the underlying Tree you can add new Records to a dedicated TreeNode by calling:
To get the similar look and feel of a grouped ListGrid you nedd to customize the TreeGrid a little bit:
By overriding the method:
you can define a custom style for all headers like this: