Jump to content

mhmda

uniGUI Subscriber
  • Posts

    1141
  • Joined

  • Last visited

  • Days Won

    157

Posts posted by mhmda

  1. Use tpl:

    function beforeInit(sender, config)
    {
      config.listConfig={
            getInnerTpl: function() {
                var tpl = '<div style="background-color:#f00">'+
                               '{val}'+
                          '</div>';
                return tpl;
            }
        };
    }
    

    Inside the tpl you may use function to do a check and change the background color.

  2. Hi, have you debug the app using developers tools in chrom and see the network tab. When u scroll there is ajax request goes to the server to tell him about current record and the server also updates your edit with the desired value. If your network has issues then this will affect the performance. The best solution is tp use client side code to update the edit text, I always use that especially when I do search on the grid.

  3. It is all available in unigui framework, except the progressbar that indicates the ‰ of the upload process, if you want to handle it manually you have also to handle server side code, anyway you may use the event 'viewready' in the clientevents of the grid and then for the specific column add your progress bar, also you may use the column renderer event to insert the progressbar.

×
×
  • Create New...