datagrid - Flex AdvancedDatagrid editable but not allowed to change data -


i have advanced datagrid, want users allow copy lines want. when use property editable allowed select text need, allowed edit this. how can prevent that?

i want users able select text in datagrid, not allowed change value of grid. should allowed select , copy (ctrl + c).

one of possible solitions is:

  1. create selectableitemrenderer extends advanceddatagriditemrenderer. in class constructor write:

    public function selectableitemrenderer() {     super();      selectable = true; } 
  2. set selectableitemrenderer grid item renderer.


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -