본문 바로가기
반응형

개발언어/3rd Part35

UltraWebGrid에서 선택한 로우 삭제하는 방법 HOWTO:How to delete rows on the client in UltraWebGrid? 참고를 하였다 Summary In order to delete rows on the client in javascript you need to use the javascript function: igtbl_deleteRow(gridName,rowID). First, be sure to allow the deletion itself by setting the AllowDeleteDefault property in the DisplayLayout object or AllowDelete on the specific band. The function needs to be passed the name of the .. 2008. 2. 4.
UltraWebGrid 지정된 셀로 포커스지정하기 웹그리드에서 지정된 cell에 focus를 지정하는 방법이다. 처음에는 너무 어렵게 생각했지만, 간단히 지정하는 방법이다. Client-Side 단에서 java함수로 구현하였다. [CODE] function SetCellFocus() { //지정한 로우에 포커스 지정하기(EditMode) var grid =igtbl_getGridById('UltraWebGrid2'); var row = grid.Rows.getRow(grid.Rows.length-1); row.getCellFromKey('ba_code').beginEdit(); } [/CODE] 지정된 컬럼의 해당로우줄에 EditMode로 지정이 된다. ba_code 컬럼의 첫번째 로우줄에 EditMode로 커서가 지정이 된다 이외 엔터시 다음셀로 이동.. 2008. 2. 4.
WebGrid.NET Enterprise 6.0 Video WebGrid.NET Enterprise 6.0 Video 울트라 웹그리드 동영상 자료들이다. 자막도 있어서 보기 참편하네요 The following is the list of available videos in this topic (General) : Getting started with WebGrid This video will guide you through configuring WebGrid to bind flat data structure from SmartTag and DataSource wizard. Introducing SmartWebResources™ technology in WebGrid This video will guide you through performing SmartWebRe.. 2008. 2. 3.
How-to: Reconfigure the "Enter" key functions on EditMode 내가 찾는게 이런것이였을까? 그리드 EditMode에서 엔터시 옆으로 이동하는 방법이다. 그리드의 EditMode일때 Enter Key(아스키 코드13)은 잘 동작하지 않는다. 해결방법은 Enter Key를 재설정하는 방법 뿐이다. Many User would like to mimic the behavior of Microsoft Excel while editing some cells contents. In MS.Excel, after users modified a cell content followed by pressing Enter key the next cell at the next row (rowIndex+1) at the same column will be directly highlighted... 2008. 2. 3.
반응형