Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-11-02 Thread Jesse Tayler
...Thoughts on modern UI frameworks and WO/Wonder: D2W is still one of my most favorite technology inventions ever. I fully believe it is the best way to capture the logical configuration of complex relational data and anything, but especially the web. Getting even half-way through this modern

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Jesse Tayler
Wow — Great — Let’s see, we should be able to have the image size dynamic a la bootstrap and I’ll fix up our new image component to be able to read a blog or take a url or whatever else we need — I guess the first thing is to use the other migration, but I doubt I have that database installed?

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Theodore Petrosky
OK i got it to work!! 100 : pageConfiguration = 'InspectTalent' => displayPropertyKeys = ("firstName", "lastName", "moviesDirected", "photo.photo", "roles") [com.webobjects.directtoweb.Assignment] 100 : (pageConfiguration = 'InspectTalent' and propertyKey = 'photo.photo') => componentName = "E

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Jesse Tayler
Well, that sounds damn close to me — I can try my hand at it too. > On Oct 28, 2018, at 6:56 PM, Theodore Petrosky wrote: > > ok so we just need to figure out a little more!! > > this is a postgresql backend. we know that photo of talentphoto is a blob of > type bytea. > > insert into talen

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Theodore Petrosky
ok so we just need to figure out a little more!! this is a postgresql backend. we know that photo of talentphoto is a blob of type bytea. insert into talentphoto(talent_id, photo) values (3, pg_read_binary_file('IMG_0179.JPG')); pg_read_binary_file will read a binary file that lives in the roo

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
No idea, but I’d guess we should be able to put blobs in the migration somehow. Are you able to upload a photo to a Talent? Try that and see if it works, if you can save, then we can update the migrations I’m sure. We could call images from a free photo site -- perhaps fetch the data or even us

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
Hmm — are there blobs in it? We just want a demo environment that people can unpack and just read/\write. BTW, I guess I used this database or perhaps worked on the team while it was being built? I don’t know but I see the unusual name of a childhood friend in the Talent and I surely put that i

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
Ha, well, that’s a good sleuthing job there Ted And that sounds about right, no blobs..sigh. I would LOVE to adapt the really old, outdated file upload UI — There’s a nice looking file browser input widget we could support drag+drop or at least do some handling up the upload progress or somethi

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
Ok Great! As for the DB? I’m a bit confused myself - There’s a database running for me, I think the model is in a framework called ERMoviesLogic and yet another model is in another framework I have trouble accessing photos, often one side of the database is down and I never seem to be able to

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Francois BIENTZ
Thanks a lot , things are working better : the App can be run now , except the database connection for me ... Do you use the Derby database from the original example ? where is the "substitute" EOmodel for D2w hidden ? > Le 25 oct. 2018 à 20:38, Jesse Tayler a écrit : > > Beat me to t

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Jesse Tayler
Beat me to the punch, I’ll go merge that now — > On Oct 25, 2018, at 2:34 PM, Tim Worman wrote: > > I forked the project and created a pull request that encapsulates these > changes. Hopefully that fixes the JRE issue. > > Tim > >> On Oct 25, 2018, at 11:21 AM, Tim Worman wrote: >> >> All,

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Jesse Tayler
Thanks Tim! Ah, that’s great about the java version and yes, I bet that’s causing some troubles — can you check that in or make a pull or whatever so I can fix? And ok, I added a Libraries folder there…just added a dummy file for now and we’ll ignore whatever is proper. I think the keys are le

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Tim Worman
I forked the project and created a pull request that encapsulates these changes. Hopefully that fixes the JRE issue. Tim > On Oct 25, 2018, at 11:21 AM, Tim Worman wrote: > > All, > > I just imported the framework project. I changed a couple things. First, > change the jdk to use “Workspace

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Tim Worman
All, I just imported the framework project. I changed a couple things. First, change the jdk to use “Workspace Default JRE." That may address the error with the build path having a specific jdk set. Also, I think the missing Libraries folder can be addressed the same way it is for other Wonder

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Jesse Tayler
Should we change that setting? Ted? You used Ant to build the framework and then just right-click on application class to use Run As WoApplication, right? Did you pull whatever is there today and all that? > On Oct 24, 2018, at 8:31 PM, Theodore Petrosky wrote: > > when i opened your projec

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Jesse Tayler
I’m cc’ing Robert here who’s great with configuration, I run the app using the right click wonder app options not the build file myself My build.xml for the app looks normal and ends with The build.xml for the frameworks looks normal and far more complex and begins with I do see that

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Francois BIENTZ
Yes I’m able to run other Wonder Apps For the BootstrapModernLook Framework it works now (ant needs a Library in folder in the Eclipse project ) I right clicked on build.xml — WOLips ant tools — install What did you put in this Library directory ? Then for the App I tried to use ant too (rig

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Jesse Tayler
I’m not certain why you’d get that — Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is some class path trouble. I presume you are able to run other Wonder stuff ok? I right-click on ant build.xml and select Run to install the framework Then I do the same with the Applicat

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Francois BIENTZ
> Most of the basics are now working, but this is still early construction > please let me know if you’re able to get things to build and run…it’s really > helpful to get reports at this juncture, so thanks! I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse but I get : can’t

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-19 Thread Jesse Tayler
This framework will transform you from ugly…. to irresistible— https://youtu.be/4H1Lc_JHF7I?t=97 Here’s some screen shots: https://i.imgur.com/WtDLHX9.jpg https://i.imgur.com/YsnKLP6.png https://i.imgur.com/GhSAft0.png https://i.imgur.com/11ONg0M.png https://i.imgur.com/vmEtEMV.png https:

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-18 Thread Jesse Tayler
Well, it is still VERY early and I’m having trouble with conflicting javascript perhaps? I have several components with tiny javascript bits no them, nearly all are failing with that old error of jQuery not found or something… Please look at the page wrapper and see if you can figure what’s wro

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
WOOgnl is linked to the framework, shouldn’t that be enough to force it? I guess not but that’s what I would have hoped so when you link, any depends will cause the build to break. I have added it to the demo app which is nearly ready for people to at least try out. > On Oct 17, 2018, at 12

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
Oh, thanks for letting me know because that was a red-flag for sure and I’m certain I have more inline bindings around that would quietly fail! I’ll include that into this demo so we won’t run into that again. > On Oct 17, 2018, at 12:43 PM, Theodore Petrosky wrote: > > BTW the reason the in

Re: Interested in Modern UI Kits, like Bootstrap

2018-10-17 Thread Tim Worman
I was going to suggest the same. I forked that project and I’ve been testing it out some. I also added a date-time picker component. Tim UCLA GSE&IS > On Oct 17, 2018, at 12:08 AM, francois.bie...@orange.com wrote: > > Can this work from Goetz Neumann be helpful ? > > https://github.com/AppWo

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
That is interesting — But it worked… Thanks, and this is coming out very interesting! > On Oct 17, 2018, at 10:41 AM, Theodore Petrosky wrote: > > interesting I just created a little test and I found that if I put the > ERXStyleShhet in the WOD it worked but not inline! > > try using the

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Theodore Petrosky
interesting I just created a little test and I found that if I put the ERXStyleShhet in the WOD it worked but not inline! try using the WOD BootstrapCSS : ERXStyleSheet { filename = "ermod-overrides.css"; framework = "BootstrapModernLook"; } > On Oct 17, 2018, at 10:01 AM, Je

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
Ok, I have the ERModernMoviesDemo app running and linked to the new framework. I notice my rules and components are working, but the css overrides is not loading?? It’s almost like ERXStyleSheet isn’t working or something? This seems fine in my other app — how are folks loading in fra

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread lists . fabian
Hi Jesse, That does indeed look suspicious, so it might be the space in the username. Fabian > Am 17.10.2018 um 13:41 schrieb Jesse Tayler : > > Hi Fabian > > I’m guessing this might be related to the fact that Migration Assistant once > assisted me and kindly created a new home folder with a

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
Hi Fabian I’m guessing this might be related to the fact that Migration Assistant once assisted me and kindly created a new home folder with a jtayler 1 in it…yes, including the space… So, I have had to do some local stuff and likely should break down and just change my home dir in the UNIX sy

Re: Interested in Modern UI Kits, like Bootstrap

2018-10-17 Thread francois . bientz
Can this work from Goetz Neumann be helpful ? https://github.com/AppWonder/DDBootstrap3 https://github.com/AppWonder/DDBootstrap3Demo _ Ce message et ses pieces jointes peuve

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Fabian Peters
Hi Jesse, Can you show a bit more of the stacktrace please? Fabian > Am 16.10.2018 um 21:29 schrieb Jesse Tayler : > > Ted- > > Oh, that’s great — that would be perfect because you could compare things > easily and I can show some modern D2W ideas that are useful > > I am able to find and im

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Jesse Tayler
Ted- Oh, that’s great — that would be perfect because you could compare things easily and I can show some modern D2W ideas that are useful I am able to find and import the app and try to run it, it locks up after launch and listing SQL although I don’t know where from — ??? Anyway, it gets int

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Jesse Tayler
Movies was a nice simple model that if I had migrations or in-memory it would allow me to render some D2W data rather than just present some HTML. I can add a simple app next to the framework and we can figure if Movies or something else is easy to put in there. > On Oct 16, 2018, at 2:03 PM

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Tim Worman
If my memory serves me correctly: Movies.woa had an in-memory db option, right? Are you thinking it might be an option to resuscitate Movies.woa and add your samples there. Or maybe just replace it altogether with a modernized version that uses the movies data? Tim > On Oct 15, 2018, at 11:50

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-15 Thread Jesse Tayler
I’d like to add a simple test / demo app or at least a page to show things working I see Movies.woa is no longer working? I figured there would be something with migrations that could just run and load a basic model? Anyone have suggestions how I should set that up? > On Oct 15, 2018, at

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-15 Thread Tim Worman
Yes, for sure. > On Oct 15, 2018, at 1:41 PM, Theodore Petrosky wrote: > > Jesse, > > of course!!! > > > Ted > > > >> On Oct 15, 2018, at 2:04 PM, Jesse Tayler wrote: >> >> Hi All >> >> Anyone interested in modern UI kits like Bootstrap & Shards with WO? >> >> Robert Hanna and I, have

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-15 Thread Theodore Petrosky
Jesse, of course!!! Ted > On Oct 15, 2018, at 2:04 PM, Jesse Tayler wrote: > > Hi All > > Anyone interested in modern UI kits like Bootstrap & Shards with WO? > > Robert Hanna and I, have started a very simple framework migrating Bootstrap > stuff out of an app. Stuff people might find r

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-15 Thread Jesse Tayler
Hi All Anyone interested in modern UI kits like Bootstrap & Shards with WO? Robert Hanna and I, have started a very simple framework migrating Bootstrap stuff out of an app. Stuff people might find really useful —Beautiful table-free list-views, fantastic looking forms with all modern input tag