| | |
| | | xstring val; |
| | | xml x; |
| | | |
| | | var xdoc = x; |
| | | auto xdoc = x; |
| | | dw_detail.DwUpdateAllTo(xdoc); |
| | | val = xdoc.xml; |
| | | val = xdoc.xml(); |
| | | //trace(val); |
| | | //return 1; |
| | | xaserverarg args; |
| | |
| | | xstring sPersonID = arg.GetArgString(L"sPersonID"); |
| | | //trace(sPersonID); |
| | | xstring sPersonName = arg.GetArgString(L"sPersonName"); |
| | | dw_detail.SetItemDisplayString(1, colname, sPersonName); |
| | | dw_detail.SetItemString(1, colname, sPersonID); |
| | | dw_detail.SetItemDisplayString(1, colname.c_str(), sPersonName); |
| | | dw_detail.SetItemString(1, colname.c_str(), sPersonID); |
| | | dw_detail.Redraw(); |
| | | } |
| | | } |