Software / Technology Tips

How To Add Animation Effects Using CSS

CSS can be used to change the appearance of a browser element by adding animation effects to it such as rotation, transform, scale and many more.CSS transitions are used to control the speed of animation changes to elements over an interval of time following an acceleration curve that can be customized. NOTE: These effects are…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Adding a Sub-Report to the JasperReport by JasperReport Plug-in

With the recent release of JasperReport Plug-in, Now, you can directly add any fields, calculations(stored/un-stored), aggregations, global variables, related fields and many more, to your Jasper Report, as you are doing in  Servoy itself. You don’t have write huge SQL Query for the same. Just pass your foundset to the report and access the fields,…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Creating image thumbnails using Servoy Solution Model

Image Thumbnails can be created at the design time using list view. But the problem is we can show only one thumbnail per row/line. This is fine as long as the number of thumbnails to be created is known but when the number of thumbnails to be created is not known and there is a…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Uploading files in Servoy smart client and Servoy web client.

Servoy requires a single code base which is common for both the desktop and web. But Servoy also has it’s limitations and oneof them is file uploading in servoy smart client and web client. The following tip demonstrates how a developer can handle file uploading in smart client and web client. File uploading in Smart…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Keeping the data in ListView with interactive items while scrolling in Android

Let  us take a ListView with one TextView, one EditText and one CheckBox on its rows as in the picture belo viewHolder.scores=(EditText) view.findViewById(R.id.score); viewHolder.scores.addTextChangedListener(new TextWatcher() { public void onTextChanged(CharSequence s, int start, int before, int count) { Model element=(Model)viewHolder.scores.getTag(); element.setScore(s.toString()); } public void beforeTextChanged(CharSequence s, int start, int count,int after) { } public void afterTextChanged(Editable…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

RowBGColorCalculation; Updated in Servoy 4.x

With the Servoy 4.x release, some additional parameters has been added to the RowBGColorCalculation to give the developer more control on managing the colors for the records in Table and List View. With this release additional parameters are available with the calculation/global method, that you have set in the ‘rowBGColorCalculation’ property of the form. Here,…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

How to display a Digital watch with Current Date on a Web page using JavaScript

Sometimes in our web applications we need to display current date and time , there are various ways and methods to display date and time in a web application. Here I am going to describe one simple method to display Current date and time in a digital watch format. Here I am using JavaScript and…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

.Net – Produce Special effects when loading or closing windows

dwFlags Animation type. 1- Animate the window from left to right 2 -Animate the window from right to left 4 -Animate the window from top to bottom 8 -Animate the window from bottom to top 65536 -Hides the window 131072 – Activates the window 262144 -Slide animation 524288 – Fade effect Code Samples C#.Net using…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

SilverLight : Load Assembly on Demand

Step 3. Create a Silverlight web application Step 4. Add Reference to SampleLibrary.  After adding reference right-click on the SampleLibrary reference and change the property “Copy Local” to false. This will keeping the Assembly out of the XAP. Step 5. Copy the assembly to ClientBin folder of web application where the .xap file resides. Step 6.…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

The Detailed Impact Case Method for Regression Testing

Key ideas One case is examined in detail to determine value. To keep cost of the survey down, we sacrifice statistical validity for concreteness. The detailed impact case method is good for tools and methods changes that have a large effect either because they are used on one big project or because they are used…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!