http://backend.userland.com/rss092Nitobi User Forums
http://forums.nitobi.com//
Nitobi Support Forums[email protected][email protected]Thu, 11 Feb 2010 15:48:53 GMTGrid :: Locking Nitobi Support Forums
http://forums.nitobi.com/viewtopic.php?p=12205#12205
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=4132" target="_blank">andrew_nitobi</a><br />
Subject: Locking Nitobi Support Forums<br />
Posted: Mon Oct 20, 2008 9:28 pm (GMT 0)<br />
Topic Replies: 0<br /><br />
<span class="postbody">As we have open sourced Complete UI, we here at Nitobi are making some changes to our support process, to help new and existing customers get quick and substantial answers to all their Complete UI queries. In order to deliver the best possible support, we are locking the Nitobi Support Forums. Although you can still read and review any discussions that have taken place here, you will not be able to post new topics or respond to old topics. We feel our new strategies will be better equipped to help us respond to all issues asap.
<br />
<br />
The main problems we have had had with these forums are:
<br />
<ul><li><span style="font-weight: bold">Huge amounts of spam</span> - not only does the spam waste our time, having to remove topics from the forums every day, our anti-spam software did not work well, as it blocked valid users from posting or registering on the site.
<br />
<li><span style="font-weight: bold">Lack of status for registered customers</span> - without a distinction between registered customers and trial users on these forums, we're unable to easily tell what priority a problem should be set to. Although we do want to help trial users get acclimatised to our system, our priority is with paying customers, which was sometimes a problem.
<br />
<li><span style="font-weight: bold">Repeated issues</span> - because these forums do not have a useful tagging system, we couldn't measure which issues come up most regularly, and display appropriate solutions to all users. Our new support strategies are designed to allow users and agents find solutions to old problems immediately, so we won't waste our time and you won't waste your support hours.</ul>
<br />
Our new support options include:
<br />
<ul><li><span style="font-weight: bold">A <a href="http://nitobi.zendesk.com" target="_blank" class="postlink">helpdesk system</a></span> for all registered customers, so you can track your tickets and get a prompt response. This system includes web, email, phone and screen sharing support, and all customers with a valid Complete UI license are registered for our new support plans.
<br />
<li><span style="font-weight: bold">A <a href="http://groups.google.com/group/completeui?hl=en" target="_blank" class="postlink">discussion group</a> for community support</span> - similar to the old forums, though directed more towards discussion involving the community of Complete UI users. This will allow non-registered users of the open-source Complete UI access to a wide range of knowledge and support about the suite of components, from Nitobi developers or open source contributors.
<br />
<li><span style="font-weight: bold">A new and improved <a href="http://support.nitobi.com" target="_blank" class="postlink">Support Center</a> (still a work in progress!) and <a href="http://api.nitobi.com" target="_blank" class="postlink">API Reference</a></span> that will allow all users of our components to comprehensive product information, and tools for getting the most from Complete UI.</ul>
<br />
All things considered, we felt it best to take a new approach to giving the best possible support to all of our customers. If you have any questions about our new support options, or how your company's account is affected, please check our <a href="http://www.nitobi.com/faq/support" target="_blank" class="postlink">Support FAQ</a> or email <a href="mailto:[email protected]">[email protected]</a>.
<br />
<br />
Thanks,
<br />
Andrew
<br />_________________<br />Nitobi Support
<br />
<a href="http://support.nitobi.com" target="_blank">http://support.nitobi.com</a>
<br />
<a href="mailto:[email protected]">[email protected]</a>
<br />
604 685 9287
<br />
<br />
Please take our Customer Satisfaction Survey:
<br />
<a href="http://www.nitobi.com/completeuisurvey" target="_blank">http://www.nitobi.com/completeuisurvey</a></span><br />
Grid :: RE: N-level treeGrid
http://forums.nitobi.com/viewtopic.php?p=12204#12204
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=4132" target="_blank">andrew_nitobi</a><br />
Posted: Wed Oct 15, 2008 11:16 pm (GMT 0)<br />
Topic Replies: 1<br /><br />
<span class="postbody">There is no way to do this with the given TreeGrid XML syntax. Your best option is to modify your gethandler so that when a component has no items of a certain level, it returns an empty XML block (that cannot be expanded). Here's some sample PHP code:
<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">
<br />
$countQuery = "SELECT COUNT(*) AS totalRowCount FROM tbl_tickets where Dev_Id=" . $Dev_Id;
<br />
$totalRows = mysql_result(mysql_query($countQuery), 0);
<br />
<br />
$empty_results = <<<EMPTY_FIELD
<br />
<root xml:lang="en" fields="Ticket_Id|Dev_Id|Organization_Id|Zendesk_Id|ZD_Icon|Status|Assignee|DateAssigned|HoursSpent" totalrowcount="1" parentfield="Dev_Id" parentvalue="$Dev_Id"></root>
<br />
EMPTY_FIELD;
<br />
<br />
if ($totalRows == 0) {
<br />
echo $empty_results;
<br />
return;
<br />
}
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
Note that you will need to know the correct structure of the XML that the TreeGrid expects - you can open your gethandler in a web browser to see an example.
<br />
<br />
Thanks,
<br />
Andrew
<br />_________________<br />Nitobi Support
<br />
<a href="http://support.nitobi.com" target="_blank">http://support.nitobi.com</a>
<br />
<a href="mailto:[email protected]">[email protected]</a>
<br />
604 685 9287
<br />
<br />
Please take our Customer Satisfaction Survey:
<br />
<a href="http://www.nitobi.com/completeuisurvey" target="_blank">http://www.nitobi.com/completeuisurvey</a></span><br />
Grid :: RE: Frozen Rows
http://forums.nitobi.com/viewtopic.php?p=12201#12201
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=22565" target="_blank">Hartnack</a><br />
Posted: Mon Oct 13, 2008 3:26 pm (GMT 0)<br />
Topic Replies: 2<br /><br />
<span class="postbody"></span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>joe_nitobi wrote:</b></span></td> </tr> <tr> <td class="quote">Hello
<br />
<br />
unfortunately, we do not have the functionality to add frozen rows, only frozen columns at this point. There is a feature request currently for Frozen rows, and we hope to have this feature in a future release.</td> </tr></table><span class="postbody">
<br />
<br />
<br />
Are there any news up to now, because I like to see how it looks having frozen rows.
<br />
<br />
Cheers
</span><br />
Fisheye :: add/remove menu demo doesn't work with firefox
http://forums.nitobi.com/viewtopic.php?p=12172#12172
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=26738" target="_blank">lsong</a><br />
Subject: add/remove menu demo doesn't work with firefox<br />
Posted: Sat Oct 11, 2008 1:25 am (GMT 0)<br />
Topic Replies: 0<br /><br />
<span class="postbody">Hi there,
<br />
<br />
I tried the fisheye demo in firefox 3.0.3 and it seems that add / remove menu function doesn't work.
<br />
<br />
Does anyone know why or is this a well known bug?
<br />
<br />
Thanks
</span><br />
Grid :: N-level treeGrid
http://forums.nitobi.com/viewtopic.php?p=12171#12171
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=26669" target="_blank">crw</a><br />
Subject: N-level treeGrid<br />
Posted: Fri Oct 10, 2008 2:36 pm (GMT 0)<br />
Topic Replies: 1<br /><br />
<span class="postbody">Hello,
<br />
We're looking for a way to make the treeGrid work with n level logic. We do not want to specify the columns for every level. The columns do not change, We have a database of components and items - components have component parents and items have component parents... so we could have something like:
<br />
<br />
component1
<br />
-component1.1
<br />
--component1.1.1
<br />
---item1.1.1.1
<br />
---item1.1.1.2
<br />
--item1.1.2
<br />
-item1.2
<br />
-component1.3
<br />
--item1.3.1
<br />
component2
<br />
...
<br />
<br />
In other words we can have a component with 30 levels of components and items and another component with only 1 and we do NOT know what the deepest level is so we cannot setup a column header for every level of the treegrid.
<br />
<br />
Is there any way to do this?
<br />
<br />
Thanks.
</span><br />
Grid :: Visible Tag Property of the Nitobi Grid
http://forums.nitobi.com/viewtopic.php?p=12168#12168
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=26570" target="_blank">klewis</a><br />
Subject: Visible Tag Property of the Nitobi Grid<br />
Posted: Thu Oct 09, 2008 8:47 pm (GMT 0)<br />
Topic Replies: 0<br /><br />
<span class="postbody">All,
<br />
<br />
I've been tasked to fix a problem with the nitobi's grid column property. My predecessor used the following code snippet in VB.NET to hide columns in the grid depending on certain conditions:
<br />
If Session("strSelPhys") <> "1" Then
<br />
'AutoGrid1.RowDeleteEnabled = False
<br />
'AutoGrid1.Columns(24).Visible = True
<br />
'AutoGrid1.Columns(24).Editable = False
<br />
Else
<br />
'AutoGrid1.RowDeleteEnabled = True
<br />
'AutoGrid1.Columns(24).Visible = False
<br />
'AutoGrid1.Columns(24).Editable = False
<br />
End If
<br />
<br />
The problem is that using the visible property of the grid causes the tabbing and the pasting to stop where the column is hidden. Is there another property that can be used instead of the visible property?
<br />
<br />
Any suggestions would be greatly appreciated!
<br />
<br />
Thanks,
<br />
<br />
K. Lewis
</span><br />
Grid :: RE: Checkboxes in Q3 vs Q2
http://forums.nitobi.com/viewtopic.php?p=12167#12167
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=19588" target="_blank">jon_st205</a><br />
Posted: Thu Oct 09, 2008 2:08 pm (GMT 0)<br />
Topic Replies: 1<br /><br />
<span class="postbody">Sorry, solution here:
<br />
<br />
<a href="http://forums.nitobi.com/viewtopic.php?t=5005&highlight=checkbox" target="_blank">http://forums.nitobi.com/viewtopic.php?t=5005&highlight=checkbox</a>
<br />
<br />
Any word on Q4/datecolumn fix yet guys?
</span><br />
Grid :: Checkboxes in Q3 vs Q2
http://forums.nitobi.com/viewtopic.php?p=12166#12166
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=19588" target="_blank">jon_st205</a><br />
Subject: Checkboxes in Q3 vs Q2<br />
Posted: Thu Oct 09, 2008 1:51 pm (GMT 0)<br />
Topic Replies: 1<br /><br />
<span class="postbody">Hi all, been a while since I've posted, but hoping to get back to doing my dev work now.
<br />
<br />
In Q3 on my app, my checkboxes always appear unticked; Q2 works fine with the same code:
<br />
<br />
<ntb:textcolumn label="Curr." xdatafld="staff_current" width="35">
<br />
<ntb:checkboxeditor datasource="[{value:'On',display:''},{value:'Off',display:''}]" checkedvalue="On" uncheckedvalue="Off" displayfields="display" valuefield="value"></ntb:checkboxeditor>
<br />
</ntb:textcolumn>
<br />
<br />
Any guidance of what I am doing wrong?
<br />
<br />
Cheers,
<br />
Jon
</span><br />
ComboBox :: How to setup Multiple Colum Smartsearch Combobox
http://forums.nitobi.com/viewtopic.php?p=12165#12165
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=10129" target="_blank">elyas</a><br />
Subject: How to setup Multiple Colum Smartsearch Combobox<br />
Posted: Thu Oct 09, 2008 8:58 am (GMT 0)<br />
Topic Replies: 0<br /><br />
<span class="postbody">how can i get the samrt search to check 2 colums.
<br />
<br />
i have a databsie with zip codes and area name. i want it to search zip code if enterd or area if enterd.
<br />
<br />
i tried to modify the combo.load0.php but i cant get it work.
<br />
<br />
------------------------------------------
<br />
<br />
$tableName = "postcodes";
<br />
<br />
$searchColumn = "State";
<br />
<br />
<br />
// *******************************************************************
<br />
// This code block just sets up the database and tries to figure out what index number
<br />
// our data starts at. This code has nothing to do with the grid itself so think of it as
<br />
// business logic.
<br />
// *******************************************************************
<br />
<br />
//Set up the database connection and get the recordset
<br />
mysql_select_db($database_conn) or die(mysql_error());
<br />
<br />
// Retrieve all the data from the "example" table
<br />
$myQuery = "SELECT * FROM " . $tableName . " WHERE " . $searchColumn . " LIKE '" . $searchSubString . "%' LIMIT " . $startingRecordIndex . "," . $pageSize . ";";
<br />
$result = mysql_query($myQuery) or die(mysql_error());
<br />
----------------------------------------------------------------------------
<br />
i want my search to search a field called zipcode too.
<br />
<br />
cheers
</span><br />
Grid :: RE: How to tell the grid the insert failed?
http://forums.nitobi.com/viewtopic.php?p=12163#12163
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=20569" target="_blank">Rufus</a><br />
Posted: Thu Oct 09, 2008 7:37 am (GMT 0)<br />
Topic Replies: 7<br /><br />
<span class="postbody">Hi Fil,
<br />
<br />
Okay thank you for the clarification with the change log.
<br />
<br />
To extract the failed insert/update/delete node from the beforeSave saved changeLog, I need a possibility to determine whether a operation of a node has failed or not.
<br />
<br />
At the moment my server has a list of failed Records after a save process. Now I have to somehow populate this list to the client side so that the client side can somehow determine the "failed" nodes.
<br />
<br />
What's your pruposal for this?
<br />
Should I send back a list of "failed record IDs"?
<br />
Or should I send the "beforeSaveChangeLog" to the server with an AJAX call and let the server extract the failed nodes and than send it back to the client?
<br />
<br />
thanks ahead
<br />
<br />
Kind regards
<br />
Rufus
</span><br />
Grid :: Grid update field changed to xid value
http://forums.nitobi.com/viewtopic.php?p=12162#12162
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=26178" target="_blank">keefro</a><br />
Subject: Grid update field changed to xid value<br />
Posted: Wed Oct 08, 2008 8:40 pm (GMT 0)<br />
Topic Replies: 0<br /><br />
<span class="postbody">I'm having an issue with the trial version downloaded last week. The field in my Update sql statment, DEANo, is always being set to the xid value. I've validated the request and response with Firebug.
<br />
<br />
All other fields in my query work fine and post to the database without issue. I increased the size of this field and can post the value that is returned without issue as well. Not sure what is causing this to be changed in the saveHandler ReturnUpdateField function.
<br />
<br />
GRID (works fine when reading the DEANo field):
<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code"> <ntb:grid id="EditorsGrid"
<br />
mode="standard"
<br />
keygenerator="GetNewRecordID()"
<br />
gethandler="load_doctor.php"
<br />
savehandler="save_doctor.php"
<br />
rowhighlightenabled="true"
<br />
autosaveenabled="true"
<br />
toolbarenabled="true"
<br />
rowdeleteenabled="true"
<br />
rowinsertenabled="true"
<br />
rowsperpage="11"
<br />
theme="vista">
<br />
<br />
<ntb:columns>
<br />
<br />
<ntb:textcolumn label="Last" xdatafld="lname" width="150">
<br />
</ntb:textcolumn>
<br />
<ntb:textcolumn label="First" xdatafld="fname" width="150">
<br />
</ntb:textcolumn>
<br />
<ntb:textcolumn label="Type" xdatafld="LicenseType" width="50">
<br />
</ntb:textcolumn>
<br />
<ntb:textcolumn label="DEA#" xdatafld="DEANo" width="75">
<br />
</ntb:textcolumn>
<br />
<ntb:textcolumn label="License" xdatafld="LicenseNo" width="100">
<br />
</ntb:textcolumn>
<br />
<ntb:textcolumn label="NPI" xdatafld="NPI" width="105">
<br />
</ntb:textcolumn>
<br />
<ntb:textcolumn label="NPDS" xdatafld="NPDS" width="60">
<br />
</ntb:textcolumn>
<br />
</ntb:columns>
<br />
</ntb:grid>
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
POST:
<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code"><root fields="lname|fname|LicenseType|DEANo|LicenseNo|NPI|NPDS|BulkAction" keys="lname|fname|LicenseType|DEANo|LicenseNo|NPI|NPDS|BulkAction"><update xid="id0x1d8116e06ntbcmp_0" a="Last" b="First" c="D.O." d="4444" e="CA1234" f="" g="" h="no" xi="4" xk="88"/></root>
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
RESPONSE:
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">
<br />
<root fields="lname|fname|LicenseType|DEANo|LicenseNo|NPI|NPDS|BulkAction" keys="lname|fname|LicenseType|DEANo|LicenseNo|NPI|NPDS|BulkAction"><update xid="id0x1d8116e06ntbcmp_0" a="Last" b="First" c="D.O." d="4444" e="C1234" f="" g="" h="no" xi="4" xk="88"/></root>
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
QUERY (echoed out in save_data.php)
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">UPDATE Doctor SET lname = 'Last', fname = 'First', LicenseType = 'D.O.', LicenseNo = 'CA1234', DEANo = 'id0x1d8116e06ntbcmp_0', NPI = '', NPDS = '' WHERE DoctorID = '88';</td> </tr></table><span class="postbody">
<br />
<br />
Thanks, Keith
</span><br />
Grid :: RE: How to tell the grid the insert failed?
http://forums.nitobi.com/viewtopic.php?p=12161#12161
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=22092" target="_blank">Fil_Nitobi</a><br />
Posted: Wed Oct 08, 2008 5:50 pm (GMT 0)<br />
Topic Replies: 7<br /><br />
<span class="postbody">Hello Rufus,
<br />
<br />
Yes, I think your idea in general should work. However, I do not think it is necessary for you to re-pack the Record objects into XML. Can you not simply extract the XML nodes that correspond to the failed inserts/updates/deletes from the original change log that you passed into your function? I think searching for the XML nodes corresponding to the failed updates would be easier than to take the data from your Record objects and packing them back up in XML. The XML has to to be in the same format, so I think this approach is easier.
<br />
<br />
I should have mentioned earlier that when you run:
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">
<br />
myGrid.getChangeLogXmlDoc();
<br />
</td> </tr></table><span class="postbody">
<br />
... it is the same as:
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">
<br />
myGrid.datatable.log.xml
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
So then to replace the change log with the failed updates, you can do an assignment like so:
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">
<br />
myGrid.datatable.log.xml = failedChangeLog;
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
Hope that helps,
<br />
Fil
<br />
Junior Web Software Engineer
<br />_________________<br />Fil
<br />
Junior Web Software Engineer, Nitobi</span><br />
Grid :: RE: firing the save event from javascript
http://forums.nitobi.com/viewtopic.php?p=12160#12160
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=22092" target="_blank">Fil_Nitobi</a><br />
Posted: Wed Oct 08, 2008 5:17 pm (GMT 0)<br />
Topic Replies: 1<br /><br />
<span class="postbody">Hi Nick,
<br />
<br />
You're very close - instead of:
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">
<br />
DBGrid.object.save();
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
... use:
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> <td><span class="genmed"><b>Code:</b></span></td> </tr> <tr> <td class="code">
<br />
DBGrid.save();
<br />
</td> </tr></table><span class="postbody">
<br />
<br />
Best,
<br />
Fil
<br />
Junior Web Software Engineer
<br />_________________<br />Fil
<br />
Junior Web Software Engineer, Nitobi</span><br />
Grid :: firing the save event from javascript
http://forums.nitobi.com/viewtopic.php?p=12159#12159
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=7765" target="_blank">gyxile</a><br />
Subject: firing the save event from javascript<br />
Posted: Wed Oct 08, 2008 3:40 pm (GMT 0)<br />
Topic Replies: 1<br /><br />
<span class="postbody">Hi
<br />
<br />
I am triying to fire the save method for a grid on my webpage from within a javascript procedure. I'm sure this is probably very simple, cany anyone give me some pointers as to how i do it. the reason i need ot do this is i need to set some parameters to be sent to my servlet before i run the save. I am doing this with
<br />
:-
<br />
<br />
var DBGrid = nitobi.getComponent('DataboundGrid');
<br />
DBGrid.getDataSource().setGetHandlerParameter('amt',amt);
<br />
DBGrid.getDataSource().setGetHandlerParameter('porq',porq);
<br />
DBGrid.getDataSource().setGetHandlerParameter('desc',desc);
<br />
DBGrid.getDataSource().setGetHandlerParameter('ptype',ttype);
<br />
DBGrid.getDataSource().setGetHandlerParameter('suppid',supp);
<br />
DBGrid.getDataSource().setGetHandlerParameter('fromdate',fromDate);
<br />
DBGrid.getDataSource().setGetHandlerParameter('todate',toDate);
<br />
DBGrid.getDataSource().setGetHandlerParameter('batchno',btch);
<br />
DBGrid.getDataSource().setGetHandlerParameter('user',username);
<br />
<br />
and then trying to save the grid with
<br />
<br />
DBGrid.object.save();
<br />
<br />
but i get an
<br />
error
<br />
<br />
'object' is null or not an object
<br />
<br />
any help you can offer will be much appreciated
<br />
<br />
<br />
thanks
<br />
<br />
Nick
</span><br />
Grid :: RE: How to tell the grid the insert failed?
http://forums.nitobi.com/viewtopic.php?p=12156#12156
Author: <a href="http://forums.nitobi.com//profile.php?mode=viewprofile&u=20569" target="_blank">Rufus</a><br />
Posted: Wed Oct 08, 2008 1:21 pm (GMT 0)<br />
Topic Replies: 7<br /><br />
<span class="postbody">Hi,
<br />
<br />
I have some trouble again.
<br />
Because of my underlaying datasource I can not use Transactions.
<br />
Because of this I can not roll back any changed made in an error case.
<br />
<br />
So I started using BatchUpdate's to have the posibility to determine Records that hasn't been inserted(ord updated or deleted) during the BatchUpdate in an error case.
<br />
<br />
Now I have on the Server side all Record Objects that hasn't been inserted but I don't know what would be the best way to send these Records back to the client.
<br />
<br />
Should I convert these Record objects back to XML and put it into the errorMessage of the SaveHandler?
<br />
<br />
In a clear question: What is the best way put (Server-sided)Record Objects back to the DataSource of the Grid and back to the ChangeLog of the Grid?
<br />
<br />
Another topic:
<br />
<br />
We know that the DataTable (JS object) has the function "getChangeLogXmlDoc()" but there is not "setChangeLogXmlDoc".
<br />
In order to this the only way to modify the ChangeLog is to use the createElement function.
<br />
In my case to add all unsuccessfull operated records back to the ChangeLogXmlDoc.
</span><br />