BuildDate Wed Mar 05 15:52:00 IST 2014
Version 4.1p
SCVersionNumber v9.1p_2014-03-05
Team,
I am implementing TreeGrid for my application. Since TreeGrid basically extends ListGrid i expected to get same funtionality behaviour from both. But i am facing multiple issues which are listed as follows :-
1) Till the data has not arrived for my grid , My list grid shows a data loading message. On investigation i found that it is using this CSS :-
But my tree grid is unable to use this. So can you show me a way how to make use of this in my TreeGrid too.
I have tried using
which is not working.
2)My both grids use setShowFilterEditor(true)(with some customisations , although they are same in listgrid and tree grid) . But list grid uses 'contains' criteria but tree grid is using exact word search
For example : my data has 'Mozambique' as a field value.
List grid yields results even if i type 'moz'. But tree Grid does not. Upon investigating the query formed at back end I found the difference in the query formed.
3) This also concerns the CSS(in my opinion)
List grid headers show arrows for sorted columns.My Tree grid does not.
I have attached the CSS we are using and screenshot of our requirement
4)Lastly TreeGrid child node in my case is also showing folder icon same as parent. Upon clicking it it processes complete request and then shows it as empty. Is there any specific setting for showing no icon to child and a particular icon to parent.
setNodeIcon() and setFolderIcon() can be usedin any way to meet my needs?
Version 4.1p
SCVersionNumber v9.1p_2014-03-05
Team,
I am implementing TreeGrid for my application. Since TreeGrid basically extends ListGrid i expected to get same funtionality behaviour from both. But i am facing multiple issues which are listed as follows :-
1) Till the data has not arrived for my grid , My list grid shows a data loading message. On investigation i found that it is using this CSS :-
Code:
.loadingDataMessage, .offlineMessage, .emptyMessage { color: black; font-family: Arial, Verdana, sans-serif; font-size: 11px; padding: 11px; }
I have tried using
Code:
setLoadingDataMessageStyle("loadingDataMessage"); setEmptyMessageStyle("emptyMessage"); setOfflineMessageStyle("offlineMessage");
2)My both grids use setShowFilterEditor(true)(with some customisations , although they are same in listgrid and tree grid) . But list grid uses 'contains' criteria but tree grid is using exact word search
For example : my data has 'Mozambique' as a field value.
List grid yields results even if i type 'moz'. But tree Grid does not. Upon investigating the query formed at back end I found the difference in the query formed.
3) This also concerns the CSS(in my opinion)
List grid headers show arrows for sorted columns.My Tree grid does not.
I have attached the CSS we are using and screenshot of our requirement
4)Lastly TreeGrid child node in my case is also showing folder icon same as parent. Upon clicking it it processes complete request and then shows it as empty. Is there any specific setting for showing no icon to child and a particular icon to parent.
setNodeIcon() and setFolderIcon() can be usedin any way to meet my needs?
Comment