Re: [Dev] [DAS] DAS dashboard table-gadget column order

2015-10-08 Thread Thanuja Uruththirakodeeswaran
Hi All, I was able to change the column order in table gadget by giving the required columns in gadgetConfig.js file and set the columns varible inside getColumns() in main.js file as columns = gadgetConfig.columns; Also if want to change table column titles as we want (Ex: sometime database

Re: [Dev] [DAS] DAS dashboard table-gadget column order

2015-08-24 Thread Thanuja Uruththirakodeeswaran
Hi Gimantha, Is there any solution to get Table Gadget column order as Data Explorer Table column order? Thanks. On Fri, Aug 14, 2015 at 8:20 PM, Thanuja Uruththirakodeeswaran thanu...@wso2.com wrote: Hi Gimantha, Yes gadget table columns are not in the order as in schema. Data explorer

Re: [Dev] [DAS] DAS dashboard table-gadget column order

2015-08-24 Thread Gimantha Bandara
Hi Dunith, Are we internally processing the columns in the schema in gadget generation.. Like changing the column order? Or are we simply iterating the columns in the schema returned by JS API when creating gadgets? On 8/24/15, Thanuja Uruththirakodeeswaran thanu...@wso2.com wrote: Hi

Re: [Dev] [DAS] DAS dashboard table-gadget column order

2015-08-14 Thread Gimantha Bandara
Hi Thanuja, Is it same with the H2 table or only the HBase analytics table? On Thu, Aug 13, 2015 at 6:50 PM, Thanuja Uruththirakodeeswaran thanu...@wso2.com wrote: Hi, I've persisted a event stream in event store which is a HBase database. Then using the following query I created table in

Re: [Dev] [DAS] DAS dashboard table-gadget column order

2015-08-14 Thread Thanuja Uruththirakodeeswaran
Hi Gimantha, Yes gadget table columns are not in the order as in schema. Data explorer has same column order as in schema. Thanks. On 14 Aug 2015 18:18, Gimantha Bandara giman...@wso2.com wrote: Columns you define in the schema, does not map to RDBMS physical tables' columns. Are you saying

Re: [Dev] [DAS] DAS dashboard table-gadget column order

2015-08-14 Thread Gimantha Bandara
Columns you define in the schema, does not map to RDBMS physical tables' columns. Are you saying that the gadget tables that you create, do not have the column order as it is in the schema? Is it in the same order in the Data explorer? On 8/14/15, Thanuja Uruththirakodeeswaran thanu...@wso2.com

Re: [Dev] [DAS] DAS dashboard table-gadget column order

2015-08-14 Thread Thanuja Uruththirakodeeswaran
Hi Gimantha, I used external HBase DB and DAS embedded H2 DB. I checked with HBase table and table-gadget column order same as HBase table. I tried with H2 table, but I couldn't see column names as I think it was encrypted or something. How can I check the column names in DAS embedded H2

[Dev] [DAS] DAS dashboard table-gadget column order

2015-08-13 Thread Thanuja Uruththirakodeeswaran
Hi, I've persisted a event stream in event store which is a HBase database. Then using the following query I created table in spark environment. Also I used H2 database as processed store. CREATE TEMPORARY TABLE memberinfo USING CarbonAnalytics OPTIONS (tableName MEMBER_INFO); CREATE TEMPORARY