본문 바로가기
반응형

UltrawebGrid17

일본어사이트) UltraWebGrid 핸들러 추가하는 방법 참고한 홈페이지 http://codezine.jp/a/articleprint.aspx?aid=1668 구글에서 검색하다가 찾았다. 웹그리드에서 핸들러를 추가하는 방법을 몰라서 참 힘들었다. 그림은 피픽을 사용하여 웹페이지 스크롤 캡쳐를 하였다. 핸들러 추가하는 방법은 더 쉽다. 번개표시는 이벤트지만, 핸들러는 그냥 속성옆에 DisplayLayout 을 눌러서 Client-Side 를 눌러서 핸들러를 선택하면 된다. 2008. 2. 4.
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.
반응형