I have a StreamBase app that queries data and put it into a .lvconf table.
Is there a way to get the data from this .lvconf table and have it available in my JavaScript for me to do things with the data?
JavaScript and LiveView (TIBCO Live Datamart)
590 views Asked by Dan K. At
1
There are 1 answers
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in TIBCO
- IronPython Spotfre: Set Listbox Filter Values from user input of Table Name
- Updating a Spotfire table with another temp table
- How to deploy Tibco GI to windows 10
- Spotfire: Show default view of a table2 with limited IDs and load more data on demand when filters applied on table1
- i am getting an servlet exception(TIBCO EBX)
- TIBCO BW 6 advancement date
- In BW6.7, while testing JDBC connection getting error : java.sql.SQLException: [tibcosoftwareinc][Oracle JDBC Driver] null
- Search element in response JSON
- Is it possible to export data to excel keeping the hyperlinks of the table visualization or Details on Demand intact?
- how access data during intermediate transformation steps before final data table (i.e. need a column before it is pivoted)
- Unique Monthly Count in Spotfire Visualization that Ignores Coloring but can Still be Filtered
- Issue with running application TIBCO BWCE
- Calculating daily average count of each category in Spotfire when some categories do not appear on every day
- Long wait time before failed connection to Tibco EMS
- Using NullIF and Coalesc in SQL vs Calculated Column w Case Logic in BI Tool (Tibco Spotfire Analyst)
Related Questions in LIVEVIEW
- How to update assigns inside phx-update="stream" block of code in LiveView
- Phoenix LiveView add/update schema is using POST instead of Websockets
- How to pass data to JavaScript Hook from Database in Elixir Phoenix
- Updating nested html element in LiveView of Phoenix application without rendering the whole component
- How to Livestream camera using sony sdk api
- Programmatically composing a ~H sigil in LiveView
- How to display a canvas activity in another page using htlm, js and nodejs?
- Phoenix Liveview - Assets out of container
- JSON-LD tag on Phoenix Liveview
- ModuleBuildError with NPM in phoenix-liveview app
- Xcode: Playground Live View navigation controller clipped at top
- How to set the width of playground liveview?
- Changeset not updating on dropdown data update
- Why EdsDownloadEvfImage() always return EDS_ERR_OBJECT_NOTREADY
- My website looks perfect on local host, but after uploading it online it looks completely different?
Related Questions in STREAMBASE
- Reading Binary data type from Redis published by Streambase(Java)
- how to block when windows service running on server to delete path line from fixapi config file?
- Maven child dependency error with parent version
- How to convert ASCII integers to string in Streambase?
- JavaScript and LiveView (TIBCO Live Datamart)
- How are entitlements usually enforced when using a CEP engine?
- setting format time to hh:mm:ss:SSS in Streambase
- how to calculate the program execution time in streambase?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Assuming that
.lvconftable means a data table in a LiveView server (also known as Live Datamart), the way to access data from the table in a JavaScript application is to use the LiveView JavaScript Client API. (There is API reference documentation as well.)Here is a short example of using the API to query a Live Datamart table called ItemsInventory:
The Creating web applications with JavaScript sample shipped with LiveView further illustrates the use of the JavaScript Client API for table querying.
To load this sample in StreamBase Studio:
Follow the instructions in the sample's README.txt file to run the sample project as a LiveView Project.
Since this question and answer was created in April 2015, there is a new version of the Dashboard sample that provides a very small framework for creating JavaScript visualizations of Live Datamart query results that uses Highcharts.JS rather than D3. There is also a document called TIBCO Live Datamart JavaScript Dashboard Sample: A Best Practices Guide explaining how that Dashboard sample is structured and how to add visualizations to it.
Disclosure/Disclaimer: I am an employee of TIBCO Software, Inc. Opinions expressed here are my own and not TIBCO's.