Questions tagged [jdesktop]

jDesktop is a JavaScript library for those who prefer creating web applications in an object oriented way.

Features

  • Follows object-oriented design
  • Supports inheritance, constructors, static constructors, static methods, properties (getters, setters)
  • Enables inheritance from HTML elements
  • Has many control objects such as: Button, Menus, Calendar, etc.

Useful Links

jDesktop Home
jDesktop Download
jDesktop Documentation

17 questions
0
votes
1 answer

How to Lock Jinternal Frame inside JDesktopPane

I am using JDesktopPane and Jinternal Frame. I want to Lock Jinternal Frame inside JDesktopPane . Suggest which method or property needs to change.
Code Hungry
  • 3,930
  • 22
  • 67
  • 95
0
votes
1 answer

ClassCastException org.jdesktop.DataSet.DataRow to TypedDataRow

I have this typed DataRow: import org.jdesktop.dataset.DataRow; public class MainDataRow extends DataRow { private MainDataTable baseDataTable; protected MainDataRow(MainDataTable dt) { super(dt); this.baseDataTable = dt; } public…
Miquel
  • 8,339
  • 11
  • 59
  • 82
1
2