1. In test01 project Comment column in child grid supposed to accommodate several lines of text .. it lines coming from data source it display them okay.. (second child grid, 1st row) but if editor used and lines are entered with manual editing.. it shows seemed two line max..
Is it possible to set up editor so instead of scrolling it just expand height of the grid row.
2. If TAX Review Update button pressed, it post back and process some server events (row updating)..
Is it possible to configure grid that it does just ajax update, i.e. not visually flashing the whole page, but just display some sign in the grid area and just show the new row if it was added on the back end..
Please show what is possible on the attached project2783.test01.zip
Hello Michael,
The style should look like this:
tbody > tr > td.aquaBK { background-color:aqua; }
You can read more about styling WebDataGrid and WebHierarchicalDataGrid here:
https://es.infragistics.com/community/blogs/b/engineering/posts/webdatagrid-css-styling-guide
Regards,
Stefan
Thanks, change row height did work.. now I have to adjust style of particular column ..
I went to column setting and add CssClass : aquaBK
than add
tbody.aquaBK> tr > td {background-color:aqua
}
to the style.. it did not work.. I might missing right selector .. any suggestion
I can suggest you see this forum thread:
www.infragistics.com/.../webdatagrid-how-to-set-row-hieght
where it is discussed how to set the row's height.
Hope this helps you.
Stefan, hopefully last thing .. the behavior of the text editor... current behavior
entering text into the cell in the column Comment :
cell is empty.. while entering editor turns to scroll and shows no more than 2 lines.. if 5 lines is entered user still sees only 2 lines until s/he is leaving the row... than height of the row get expanded and all 5 lines could be observed...
Same while start entering data on the other empty cell...
Now user get back to that 5 lines cell.. On the click the and start typing scroll bar appearing but user still see all 5 lines.. and it is continue to be observable while user is typing.. If three line added than 8 lines will be seen after leaving and all 8 when cell became editable when user comes back.. etc.
All good except the beginning.. means when user entering empty cell first time and start typing only two lines can be seen and the ret gets scrolled out.. How to make row ( text editor for the cell ) get expanded to 5 lines as soon as user starts typing into the cell...
Thanks.
Hi Stefan, I'll check the rest later, but e.cancel is a good news as it confirm what I thought .. we track all updates manually in typed data sets .. and they actually track all updates/inserts .. so eventually they all avail at once on save...thanks.