Quantcast
Channel: SCN : All Content - SAP BusinessObjects Design Studio
Viewing all articles
Browse latest Browse all 4216

How to update the Dataset of a report running with universe?

$
0
0

I am facing some issue in cross-tab.

My requirement is , on click of any cell in cross-tab i want to convert  it into editable cell.

Converting into editable cell is something which I achieved using below code:

----------------------------------------------------------------------------------------------------------------------

function onCellClick(e) {

  ---

  ---

  var text=this.innerHTML;

 

  var text = $.trim(this.innerHTML);

 

 

         $('<input />').attr({ type: 'text', name: 'text' }).appendTo($(this)).val(text).select().blur(

        function () {

            var newText = $(this).val();

            $(this).parent().text(newText).find('input').remove();

            var rIndex=$(this).closest('tr').index();

            data.data[rIndex]=newText;

            that.firePropertiesChanged(["data"]);

            //that.firePropertiesChanged(["visSelection"]);

    that.fireEvent("onSelect");

        });

 

  }

-----------------------------------------------------------------------------------------------------------------------

I just modified the sample code.

My report is  running with universe.

Now I want to update the Dataset with this updated value.

Can anyone provide any help on the same?

 

Thanks


Viewing all articles
Browse latest Browse all 4216

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>